{% extends "ToDo/base.html" %} {% block content %} {% load crispy_forms_tags %} {% if todos_earlier %}

Earlier


{% include "ToDo/Next-Up Pages/todos_earlier.html" with todos=todos_earlier %}

{% endif %} {% if todos_today %}

For Today


{% include "ToDo/Next-Up Pages/todos_today.html" with todos=todos_today %}

{% endif %} {% if todos_tomorrow %}

For Tomorrow


{% include "ToDo/Next-Up Pages/todos_tomorrow.html" with todos=todos_tomorrow %}

{% endif %} {% if todos_later %}

Coming up later


{% include "ToDo/Next-Up Pages/todos_later.html" with todos=todos_later %}

{% endif %} {% endblock content %}